home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-04-10 | 1.6 KB | 59 lines | [TEXT/MPS ] |
- ;------------------------------------------------------------------------------
- ;
- ; FILENAME
- ; ChooserSupport.a
- ;
- ; DESCRIPTION
- ; Contains the code to form the first part of the Chooser 'PACK' for the
- ; ImageWriter LQ driver.
- ;
- ; COPYRIGHT
- ; Copyright © Apple Computer, Inc. 1992-1994
- ; All rights reserved.
- ;
- ; 12/20/93 - dmh - Sync'd with the shipping 1.0b3 GX driver.
- ; 8/28/94 - dmh - Sync'd with the shipping 1.0.1 GX driver.
- ;
- ;--------------------------------------------------------------------------------
-
- STRING ASIS
- CASE OBJ
-
- kAppleTalkDevice EQU $80000000
- kIsPAPDevice EQU $40000000
- kIsPostScriptDevice EQU $20000000
- kMultiSelect EQU $10000000
- kLeftButton EQU $08000000
- kRightButton EQU $04000000
- kNoSavedZone EQU $02000000
- kActualZoneNames EQU $01000000
- kNoIntlChars EQU $00800000
- kEvenUpName EQU $00400000
- kLengthOnRename EQU $00200000
- kUsesOnAndOff EQU $00100000
- kNoSetSelfSend EQU $00080000
- kUnused18 EQU $00040000
- kAcceptsInit EQU $00020000
- kAcceptsNewSel EQU $00010000
- kAcceptsFillList EQU $00008000
- kAcceptsGetSel EQU $00004000
- kAcceptsSelect EQU $00002000
- kAcceptsDeselect EQU $00001000
- kAcceptsTerminate EQU $00000800
-
- IMPORT DEVICE
- EntryPoint PROC EXPORT
- BRA.S DEVICE ; branch to our actual code
- DC.W 169 ; device ID
- DC.L 'PACK' ; device Type
- DC.W $F000 ; master ID for resources (-4096)
- DC.W 2 ; version
- DC.L kLeftButton+kUsesOnAndOff+kAcceptsInit+kAcceptsTerminate ; flags
-
- gJob PROC EXPORT
- DC.L 0 ; Job global
-
- gDriverName PROC EXPORT
- DS.B 32 ; driverName
- END
-